- /* sioshftl.cpp by K.Tsuru */
- // function ID = 412 BRADIX
- /**************************************************
- SInteger class
- It provides the bit shift operation to the left,ie
- multiplies by 2^n.
- **************************************************/
- #ifndef SN_H
- #include "sn.h"
- #endif
- SInteger operator<<(const SInteger& m, ulong n){
- if(!n || (m.Sign(412) == 0)) return m;
- SInteger result(m);
- result.BitShift((long)n);
- return result;
- }
sioshftl.cpp : last modifiled at 2015/12/14 16:24:55(457 bytes)
created at 2016/04/25 14:53:17
The creation time of this html file is 2017/10/25 11:09:45 (Wed Oct 25 11:09:45 2017).